cf0d2197b808c79ac0c936c3bb6941c53bcbcbfa,apps/routerconsole/java/src/net/i2p/router/web/GraphHelper.java,GraphHelper,setContextId,#String#,36

Before Change


        _height = _context.getProperty(PROP_Y, DEFAULT_Y);
        _periodCount = _context.getProperty(PROP_PERIODS, DEFAULT_PERIODS);
        _refreshDelaySeconds = _context.getProperty(PROP_REFRESH, DEFAULT_REFRESH);
        _showEvents = Boolean.valueOf(_context.getProperty(PROP_EVENTS)).booleanValue();
    }
    
    /**

After Change


        _height = _context.getProperty(PROP_Y, DEFAULT_Y);
        _periodCount = _context.getProperty(PROP_PERIODS, DEFAULT_PERIODS);
        _refreshDelaySeconds = _context.getProperty(PROP_REFRESH, DEFAULT_REFRESH);
        _showEvents = _context.getBooleanProperty(PROP_EVENTS);
    }
    
    /**